home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
Other Langs
/
xlisp
/
XLisp 1.7 ƒ
/
examples
/
fact.lsp
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Lisp/Scheme
|
1985-06-05
|
84 b
|
4 lines
|
[
TEXT/????
]
(defun factorial (n)
(cond ((= n 1) 1)
(t (* n (factorial (- n 1))))))